home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 41.zip / BS1 part 41 / parallel-C disk ^1.adf / SEMA.H < prev    next >
C/C++ Source or Header  |  1997-12-31  |  285b  |  20 lines

  1. /*
  2. ** Sema.H
  3. **
  4. ** Header file for Parallel C's
  5. ** semaphore package.
  6. **
  7. ** Revision History:
  8. **
  9. ** Rev 000 IAY  4-Nov-1987 Created
  10. **
  11. */
  12.  
  13. #ifndef SEMA_H       /* do this only once */
  14. #define SEMA_H
  15. typedef struct sema {
  16.    int value;
  17.    char *queue;
  18. } SEMA;
  19. #endif
  20.